home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
hardware
/
fastkb
/
test.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1994-11-28
|
346 b
|
23 lines
program KeybTest;
uses UKeyb, Crt;
var i: integer;
begin
InstallKeybHandler;
while Not Pressed[ESC_KEY] do
begin
GotoXY(1, 1);
Writeln('Keys Pressed:');
for i:=0 to 255 do
if Pressed[i] then Writeln(i);
ClrEol;
end;
RestoreKeybHandler;
end.